home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
- #import <appkit/appkit.h>
-
- #import "RIBCommand.h"
-
- @interface RIBGeneralPolygon:RIBCommand
- {
- RtInt nLoops, *nVertices;
- }
-
- - setNLoops:(RtInt)newNLoops nVertices:(RtInt *)newNVertices
- n:(int)newN tokens:(RtToken *)newTokens parms:(RtPointer *)newParms archiveVector:(char **)newArchiveVector
- printfTypeVector:(int *)newPrintfTypeVector printfNVector:(int *)newPrintfNVector;
- - (RtInt)nLoops;
- - (RtInt *)nVertices;
-
- @end
-